home *** CD-ROM | disk | FTP | other *** search
- /*
- * ipdr.c
- *
- * Internet Protocol Data Representation
- *
- * This file should remove some of the burden from ip.c
- *
- * MDT 19 JAN 95
- */
-
- #include "ipdr.h"
-
- /**
- **
- ** DATA REPRESENTATION
- **
- **/
-
-
- /* htons, ntohs
- * - convert short data-types from host to network byte order and vice versa.
- */
-
- int htons(int x)
- {
- /* Welcome to Macintosh */
- return (x);
- }
-
- int ntohs(int x)
- {
- /* Welcome to Macintosh */
- return (x);
- }
-
-
-
- /* htonl, ntohl
- * - convert long data-types from host to network byte order and vice versa.
- */
-
- long htonl(long y)
- {
- return (y);
- }
-
- long ntohl(long y)
- {
- return (y);
- }